- Data -> XML -
XML.prototype.ignoreWhite = true;
#include "writeXml.as"
var intended_xml:XML = new XML();

writeXml( myDataObject, intended_xml );





- XML -> Data -
XML.prototype.ignoreWhite = true;
#include "readXml.as"
var my_xml:XML = new XML();

my_xml.load("hypotheticalArrayObject.xml");
my_xml.onLoad = function(success)
{
	readXml( my_xml, _root );
}